/** * This file was auto-generated by Fern from our API Definition. */ import * as Skyflow from "../../../../index"; /** * @example * { * vault_id: "f4b3b3b33b3b3b3b3b3b3b3b3b3b3b3b", * file: { * base64: "SGkgaSBhbSBEZXZhbnNodSwgbGl2...aW5nIGluIGNhbGlmb3JuaWEuIA==", * data_format: "pdf" * } * } * * @example * { * vault_id: "VAULT_ID", * file: { * base64: "BASE64_DATA", * data_format: "pdf" * } * } */ export interface DeidentifyPdfRequest { vault_id: Skyflow.VaultId; /** File to de-identify. Files are specified as Base64-encoded data. */ file: Skyflow.DeidentifyPdfRequestFile; configuration_id?: Skyflow.ConfigurationId; /** Pixel density at which to process the PDF file. */ density?: number; /** Max resolution at which to process the PDF file. */ max_resolution?: number; entity_types?: Skyflow.EntityTypes; token_type?: Skyflow.TokenTypeWithoutVault; allow_regex?: Skyflow.AllowRegex; restrict_regex?: Skyflow.RestrictRegex; transformations?: Skyflow.Transformations; }